Skip to main content link. Accesskey S
  • Help
  • HCL Logo
  • HCL Notes and Domino Application Development wiki
  • THIS WIKI IS READ-ONLY. Individual names altered for privacy purposes.
  • HCL Forums and Blogs
  • Home
  • Product Documentation
  • Community Articles
  • Learning Center
  • API Documentation
Search
Community Articles > Programming > LotusScript > Using LotusScript C-Callouts on non-32-bit Platforms
  • Share Show Menu▼
  • Subscribe Show Menu▼

Recent articles by this author

Community articleUsing LotusScript C-Callouts on non-32-bit Platforms
Added by ~Lorraine Minabergflar on March 29, 2011 | Version 1
expanded Abstract
collapsed Abstract
Some things you need to take into account when using LotusScript C-Callouts on a non-32-bit platform
Tags: LotusScript, c-callouts
ShowTable of Contents
HideTable of Contents
  • 1 Large heading
  • 2 Medium heading

Large heading


Using LotusScript C-Callouts on non-32-bit Platforms

There are a few issues you need to be aware of if you're writing or porting LotusScript C-Callouts to non-32-bit platforms.

The non-32-bit platforms fall into two categories: 64-bit (Windows 64, AIX-64, Linux-64) and 128-bit (iSeries)

Medium heading


When is a long not a long?

An important thing to consider is that LotusScript data types are the same size across all platforms. A LotusScript byte is always one byte (a C BYTE), integer is always 2 bytes (a C WORD) and a long is always 4 bytes (a C DWORD). In contrast, a C long is not a fixed width across platforms, or even compilers. In the Notes 8 builds, a long is 4 bytes on Windows-64, but 8 bytes on AIX-64, SUSE Linux-64 and zLinux64.

In order to check how many bytes a long and a pointer is on a given platform, compile and run the following simple C program:


main()
{
        printf("sizeof long is: %d, pointer is %d\n", sizeof (long), sizeof (long *));
}


You need to make sure that the size of the LotusScript data that you're passing to the C-Callout matches the arguments in C of the C-Callout itself
expanded Attachments (0)
collapsed Attachments (0)
expanded Versions (10)
collapsed Versions (10)
Version Comparison     
VersionDateChanged by              Summary of changes
10Jul 14, 2014, 10:28:05 AM~Lex Quetvelupulings  Additional info about the use of 64-bit pointers in LotusScript and th...
9Apr 7, 2011, 5:55:39 PM~Lorraine Minabergflar  
7Mar 29, 2011, 8:38:26 PM~Lorraine Minabergflar  
6Mar 29, 2011, 8:10:19 PM~Lorraine Minabergflar  
5Mar 29, 2011, 7:45:29 PM~Lorraine Minabergflar  
4Mar 29, 2011, 7:16:05 PM~Lorraine Minabergflar  
3Mar 29, 2011, 6:29:04 PM~Lorraine Minabergflar  
2Mar 29, 2011, 5:49:42 PM~Lorraine Minabergflar  
1Mar 29, 2011, 5:46:20 PM~Lorraine Minabergflar  
This version (1)Mar 29, 2011, 5:39:10 PM~Lorraine Minabergflar  
Copy and paste this wiki markup to link to this article from another article in this wiki.
Go ElsewhereStay ConnectedAbout
  • HCL Software
  • HCL Digital Solutions community
  • HCL Software support
  • BlogsDigital Solutions blog
  • Community LinkHCL Software forums and blogs
  • About HCL
  • Privacy
  • Accessibility